* {
    border: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body,
html {
    font-family: "Barlow", sans-serif;
    overflow-x: hidden;
    background-color: #EDF2F4;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000; /* Fundo escuro combinando com a identidade */
    z-index: 999999; /* Fica acima de absolutamente tudo */
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#preloader img {
    width: 250px; /* Ajuste conforme necessário */
    max-width: 80vw;
    animation: pulseLogo 1.5s infinite alternate ease-in-out;
}

/* Barrinha de carregamento estilizadada (opcional) */
.loading-bar {
    width: 150px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #D90429; /* Vermelho da marca */
    animation: loadingAnim 1.5s infinite ease-in-out;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes loadingAnim {
    0% { left: -100%; }
    100% { left: 100%; }
}

.s1 {
    height: 98vh;
    width: auto;
    padding: 0.1vw 0.1vw;

    .img-fundo {
        margin: auto;
        background-image: url('imagens/Group\ 3.webp');
        height: 100%;
        background-size: cover;
        padding: 1vw 2vw;
        border-radius: 15px;
        background-position: center;
        box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2);

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: auto;
            width: 95%;
            margin: auto;

            .logo-header {
                background-color: rgba(255, 255, 255, 0);
                box-shadow: 0px 0px 5px 2px rgba(83, 83, 83, 0);
                width: 120px;
                height: auto;
                border-radius: 30px;

            }

            .abas {
                border-radius: 15px;
                background-color: rgba(85, 85, 85, 0.55);
                backdrop-filter: saturate(180%) blur(20px);
                box-shadow: 0px 0px 6px 2px rgba(255, 255, 255, 0.1);
                padding: 18px 2vw;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 3vw;

                a {
                    color: white;
                    transition: ease-in-out .2s;
                    font-weight: 400;
                }

                a:hover {
                    color: #d90404;
                    transform: translateY(-1px);
                }
            }

            .btn-contato-vermelho {
                color: rgba(255, 255, 255, 0.9);
                background-color: #D90429;
                border: none;
                outline: none;
                padding: 3px 10px 3px 18px;
                font-size: 16px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                font-weight: 500;
                font-size: 18px;
                transition: ease-in-out .2s;
                box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.4);


                img {
                    height: 50px;
                    width: 50px;
                    box-shadow: none;
                    transition: ease-in-out .2s;
                }


            }

            .btn-contato-vermelho:hover {
                transform: translateY(-2px) translateX(2px) scale(1.05);
                box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.5);

                img:hover {
                    transform: scale(1.08);

                }
            }
        }

        .content-s1 {
            margin-top: 35vh;

            h1 {
                font-family: "Barlow", sans-serif;
                font-size: clamp(52px, 4vw, 4vw);
                margin: 0px;
                color: rgba(255, 255, 255, 0.85);
                text-shadow: -1px 1px 6px rgba(0, 0, 0, 0.1);
                font-weight: 600;
                text-transform: uppercase;
            }

            p {
                color: rgba(255, 255, 255, 0.85);
                width: 50%;
                font-size: clamp(18px, 1vw, 1vw);
                font-weight: 200;
                margin-top: 2vh;
                margin-left: 1vw;



            }

            .button-s1 {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: max-content;
                gap: 1.5vw;
                margin-left: 1vw;

                .btn-s1-saibamais {
                    color: rgba(255, 255, 255, 0.9);
                    background-color: #D90429;
                    border: none;
                    outline: none;
                    padding: 2px 6px 2px 14px;
                    font-size: 16px;
                    border-radius: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 8px;
                    font-weight: 500;
                    font-size: 18px;
                    transition: ease-in-out .2s;
                    box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.2);

                    img {
                        height: 50px;
                        width: 50px;
                        box-shadow: none;
                        transition: ease-in-out .2s;
                    }


                }

                .btn-s1-saibamais:hover {
                    transform: translateY(-2px) translateX(2px) scale(1.05);
                    box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.4);

                    img:hover {
                        transform: scale(1.08);

                    }
                }


                .btn-s1-orcamento {
                    color: rgba(255, 255, 255, 0.9);
                    background-color: #00000023;
                    border: 1px solid rgba(128, 128, 128, 0.2);
                    outline: none;
                    padding: 5px 6px 5px 14px;
                    font-size: 16px;
                    border-radius: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 8px;
                    font-weight: 500;
                    font-size: 18px;
                    transition: ease-in-out .2s;
                    box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.2);

                    img {
                        height: 44px;
                        width: 44px;
                        box-shadow: none;
                        transition: ease-in-out .2s;

                    }


                }

                .btn-s1-orcamento:hover {
                    transform: translateY(-2px) translateX(2px) scale(1.05);
                    box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.4);

                    img:hover {
                        transform: scale(1.08);

                    }
                }
            }
        }
    }
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    margin-top: 2vh;
    background-color: #f0f4f7;
    /* Cor de fundo do print */
    padding: 20px;
}

.item {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

/* A mágica acontece aqui: adiciona borda em todos exceto o primeiro */
.item+.item {
    border-left: 1px solid #8D0801;
    /* Cor avermelhada do seu print */
}

/* ... código do container ... */
/* ... código do container ... */

/* ... código do container ... */

.item strong {
    display: flex;
    align-items: center;
    justify-content: start;
    /* 1. REMOVI O GAP DAQUI! Assim o número e o símbolo ficam grudados de novo */
    
    font-size: 2vw; /* Voltei para o tamanho original do seu primeiro CSS */
    font-weight: 500; /* Voltei para o peso original (grosso, mas sem exagerar) */
    color: #111111;
    text-shadow: -1px 1px 3px rgba(0, 0, 0, 0.2);
}

.item strong img {
    width: 1.7vw;
    margin-right: 12px; /* 2. O espaçamento fica SÓ na imagem agora, empurrando o texto */
}

/* 3. Limpei todas as frescuras. Agora eles são uma coisa só visualmente */
.contador, .simbolo {
    font-size: inherit;
    font-weight: inherit;
    font-style: normal; 
    color: inherit;
    margin: 0;
    padding: 0;
}
/* ... resto do código ... */

/* ... resto do código ... */

span {
    font-size: 0.9rem;
    color: #444444;
}

.s2 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 8vh 12vw;
    height: auto;
    margin-bottom: 15vh;

    .content-s2 {
        width: 35%;


        h2 {
            font-size: clamp(36px, 2.5vw, 2.5vw);
            
            font-weight: 400;
            text-shadow: -1px 2px 4px rgba(0, 0, 0, 0.2);

        }

        p {
            margin: 0px;
            padding: 0px;
            line-height: 1.7;
            font-weight: 400;
            font-size: clamp(16px, 1vw, 1vw);
        }

        .btn-saibamais-red {
            color: rgba(255, 255, 255, 0.9);
            background-color: #D90429;
            border: none;
            outline: none;
            padding: 2px 6px 2px 14px;
            font-size: 16px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            font-weight: 500;
            font-size: 18px;
            transition: ease-in-out .3s;
            margin-top: 3.5vh;
            box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.2);

            img {
                height: 50px;
                width: 50px;
                box-shadow: none;
            }


        }

        .btn-saibamais-red:hover {
            transform: translateY(-2px) translateX(2px) scale(1.05);
            box-shadow: -4px 5px 16px 0px rgba(0, 0, 0, 0.5);

        }
    }


    .img-s2 {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(4, 1fr);
        gap: 1vw;
        width: 55%;
        height: 100%;



        #img-1-s2 {
            grid-column: 1 / 3;
            grid-row: 1 / 5;

            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0px 0px 5px 1px rgba(97, 97, 97, 0.2);
        }

        #img-2-s2 {
            grid-column: 3 / 5;
            grid-row: 1 / 2;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0px 0px 5px 1px rgba(97, 97, 97, 0.2);
        }

        #img-3-s2 {
            grid-column: 3 / 5;
            grid-row: 2 / 5;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0px 0px 5px 1px rgba(97, 97, 97, 0.2);
        }
    }
}

.s3 {
    padding: 0vh 1vw;
    height: 50vh;
    width: 100%;
    height: 100%;

    h2 {
        margin: auto;
        text-align: center;
        font-size: 2.5vw;
        font-weight: 400;
        margin-bottom: 8vh;
        position: absolute;
        top: 8vh;
        color: #ffffff;
        text-shadow: -1px 1px 6px rgba(255, 255, 255, 0.2);
    }

    h4 {
        position: absolute;
        top: 1vh;
        color: #8D0801;
        font-weight: 400;
        font-size: 1.3vw;
        text-shadow: -1px 1px 3px rgba(252, 8, 8, 0.2);

    }

    .content-s3 {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24vh 8vw 10vh 8vw;
        box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.486);
        border-radius: 25px;
        background-image: url('imagens/fundo-s3.png');
        background-size: cover;
        background-position: center;

        .card-s3 {

            padding: 3vh 3vw 3vh 2vw;
            width: 25vw;
            height: 28vh;
            border-radius: 5px;
            background-color: #f0f4f7;
            box-shadow: 0px 0px 2px 4px white;
            transition: ease-in-out .2s;

            img {
                height: 4vh;
                width: 4vh;
            }

            #img-suporte {
                height: 4vh;
                width: 4vh;
            }

            #img-rota {
                height: 4vh;
                width: 4vh;
            }
        }

        .card-s3:hover {
            background-color: #4b0202;
            box-shadow: 0px 0px 2px 4px #4b0202;

            h3 {
                color: #EDF2F4;
            }

            p {
                color: #EDF2F4;
                 font-weight: 400;
            }
        }

        h3 {
            font-size: 1.3vw;
            font-weight: 500;
            margin: 2vh 0vw 1vh 0vw;
        }

        p {
            font-size: 0.9vw;
            text-align: start;
            margin: 0px;
             font-weight: 400;
        }
    }
}

.s4 {
    height: 95vh;
    padding: 4vh 8vw;
    margin-top: 3vh;


    h2 {

        text-align: start;
        font-size: 2.5vw;
        font-weight: 400;
        margin-bottom: 8vh;
        text-shadow: -1px 1px 6px rgba(0, 0, 0, 0.2);
        position: relative;


        &::after {
            content: '';
            position: absolute;

            left: 0;
            bottom: -6px;
            width: 22vw;
            /* Deixa 100% para ir de ponta a ponta. Se quiser uma linha curtinha e moderna, mude para uns 15% ou 10vw */
            height: 2px;
            /* Espessura da linha */
            background-color: #8D0801;
            /* Cor da linha combinando com os cards */

        }

        &.linha-ativa::after {
            animation: desenharLinha 1s ease-in-out forwards;
        }

    }

    .flex-s4 {
        display: flex;
        align-items: center;
        justify-content: space-between;


        .cards-s4 {
            height: 70vh;
            width: 26vw;
            border-radius: 10px;
            transition: ease-in-out.5s;

            .sobreposicao {
                position: relative;
                height: 100%;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.7);
                border-radius: 10px;
                transition: ease-in-out.8s;

                a {
                    position: absolute;
                    left: 8%;
                    bottom: 8%;
                    font-size: 1.4vw;
                    color: rgba(255, 255, 255, 0.85);
                    text-decoration: underline;
                    text-decoration-color: #8D0801;

                }
            }
        }


        .cards-s4:hover {
            .sobreposicao {
                background-color: rgba(0, 0, 0, 0.0);
            }
        }

        #nordeste {
            background-image: url('imagens/imagem\ s5\ -\ regiao\ nordeste\ \ 1.png');
            background-size: cover;
            background-position: center right;
            box-shadow: 0px 0px 12px 3px rgba(97, 97, 97, 0.5);

        }

        #sudeste {
            background-image: url('imagens/imagem\ regiao\ sudeste.png');
            background-size: cover;
            box-shadow: 0px 0px 12px 3px rgba(97, 97, 97, 0.5);
        }

        #sul {
            background-image: url('imagens/imagem\ s5\ -\ regiao\ sul\ 1.png');
            background-size: cover;
            box-shadow: 0px 0px 12px 3px rgba(97, 97, 97, 0.5);
        }
    }
}

.s5 {
    height: auto;
    width: 100%;
    padding: 0vh 12vw;
    display: flex;
    flex-direction: column;
    gap: 3vh;


    h2 {
        font-size: 2.5vw;
        font-weight: 400;
        width: auto;
        margin-top: 10vh;
        text-align: center;
        text-shadow: -1px 1px 6px rgba(0, 0, 0, 0.25);
    }

    .card-s5 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2vh;


        .content-s5 {
            width: 40%;
            padding: 1vh 2vw 5vh 2vw;
            border-radius: 10px;
            transition: ease-in-out .3s;

            h3 {
                font-size: clamp(32px, 1.8vw, 1.8vw);

                font-weight: 400;
                text-shadow: -1px 1px 6px rgba(0, 0, 0, 0.27);
            }

            p {
                font-size: clamp(18px, 1vw, 1vw);
                font-weight: 400;
                line-height: 1.5vw;
            }

            a {
                color: #8D0801;
                transition: ease-in-out .2s;

                &:hover {
                    color: #D90429;


                }

                img {
                    width: auto;
                    height: auto;

                }
            }


        }



        .content-s5:hover {
            box-shadow: 0px 0px 12px 1px rgba(43, 42, 42, 0.2);

        }

        img {
            width: 40vw;
            height: 20vw;
            border-radius: 15px;
            box-shadow: 0px 0px 12px 1px rgba(43, 42, 42, 0.2);
        }
    }

}

/* --- SEÇÃO S6 (FALE CONOSCO - RDO) --- */
.s6 {
    background-color: #111111; /* Cinza quase preto */
    border-radius: 20px;
    margin: 10vh 8vw;
    padding: 60px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5vw;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    .content-s6 {
        color: #ffffffe7;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;

        /* --- ÁREA DA LOGO RDO --- */
        .logo-rdo {
            width: 100%;
            max-width: 300px; /* Tamanho máximo da logo */
            margin: 0;

            img {
                width: 100%;
                height: min-content; /* Mantém a proporção */
            }
        }

        h3 {
            font-size: clamp(2rem, 3vw, 3.5rem);
            font-weight: 500;
            margin: 0;
            margin-left: 2vw;
        }

        p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            font-weight: 300;
            color: #cccccc;
            margin-bottom:10px;
            margin-left: 2vw;
        }

        a {
            color: #ffffff;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s ease;
            margin-left: 2vw;

            &:hover {
                color: #B71C1C; /* Vermelho RDO no hover */
                transform: translateX(5px);
            }
        }
    }

    .form-s6 {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .linha {
            display: flex;
            flex-direction: column;
            gap: 8px;

            label {
                color: #eeeeee;
                font-size: 0.95rem;
                font-weight: 500;
                margin-left: 5px;
            }

            input {
                background-color: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                height: 50px;
                width: 100%;
                border-radius: 10px;
                color: #ffffff;
                padding: 0 15px;
                outline: none;
                font-family: "Montserrat", sans-serif;
                font-size: 1rem;
                transition: all 0.3s ease;

                &::placeholder {
                    color: rgba(255, 255, 255, 0.3);
                }

                &:focus {
                    border-color: #B71C1C; /* Borda Vermelha RDO no foco */
                    background-color: rgba(255, 255, 255, 0.1);
                    box-shadow: 0 0 0 4px rgba(183, 28, 28, 0.2);
                }
            }
        }

        /* ========================================================== */
        /* --- ESTILOS DE BOTÃO S1 (Copiados e Adaptados para RDO) --- */
        /* ========================================================== */
        .btn-s6 {
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Alinha os botões à esquerda */
            width: max-content;
            gap: 1.5vw;
            margin-top: 15px;

            /* --- BOTÃO VERMELHO (btn-s1-saibamais) --- */
            .btn-s1-saibamais {
                color: rgba(255, 255, 255, 0.9);
                background-color: #D90429; /* Vermelho padrão MoveNow - você pode mudar para o B71C1C se preferir */
                border: none;
                outline: none;
                padding: 2px 6px 2px 14px;
                font-size: 16px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
                font-weight: 500;
                font-size: 18px;
                transition: ease-in-out .2s;
                box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.2);
                cursor: pointer;

                img {
                    height: 50px;
                    width: 50px;
                    box-shadow: none;
                    transition: ease-in-out .2s;
                }
            }

            .btn-s1-saibamais:hover {
                transform: translateY(-2px) translateX(2px) scale(1.05);
                box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.4);

                img:hover {
                    transform: scale(1.08);
                }
            }

            /* --- BOTÃO TRANSPARENTE (btn-s1-orcamento) --- */
            .btn-s1-orcamento {
                color: rgba(255, 255, 255, 0.9);
                background-color: #00000023;
                border: 1px solid rgba(128, 128, 128, 0.2);
                outline: none;
                padding: 5px 6px 5px 14px;
                font-size: 16px;
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
                font-weight: 500;
                font-size: 18px;
                transition: ease-in-out .2s;
                box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.2);
                cursor: pointer;

                img {
                    height: 44px;
                    width: 44px;
                    box-shadow: none;
                    transition: ease-in-out .2s;
                }
            }

            .btn-s1-orcamento:hover {
                transform: translateY(-2px) translateX(2px) scale(1.05);
                box-shadow: -4px 5px 16px 0px rgba(136, 136, 136, 0.4);

                img:hover {
                    transform: scale(1.08);
                }
            }
        }
    }
}

/* =======================================
   Ajuste para o Mobile!
   ======================================= */
@media screen and (max-width: 900px) {
    .s6 {
        grid-template-columns: 1fr;
        padding: 40px 6vw;
        gap: 40px;
        
        .content-s6 {
            text-align: center;
            align-items: center; /* Centraliza a logo no mobile */
            
            a {
                justify-content: center;
            }
        }

        .form-s6 .btn-s6 {
            flex-direction: column;
            width: 100%;
            button {
                width: 100%;
                justify-content: center;
            }
        }
    }

/* Oculta TUDO: navegação, textos, títulos, email e copyright */
    .site-footer .links-uteis,
    .site-footer .rdo-info p,
    .site-footer .synapx-signature h4,
    .site-footer .footer-bottom,
    .site-footer .synapx-contacts a:last-child {
        display: none !important;
    }

    /* Ajuste do container principal */
    .site-footer {
        padding: 6vh 5vw 4vh 5vw;
    }

    .site-footer .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px; /* Distância entre a logo RDO e a logo Synapx */
        padding: 0;
        border: none;
        margin: auto;
    }

    /* Card 1: Logo RDO */
    .site-footer .rdo-info {
        width: 100%;
        display: flex;
        justify-content: center;
        justify-content: center;
        margin: auto;
    }

    .site-footer .logo-rdo-footer {
        width: 180px;
        margin: 0;
    }

    /* Card 2: Logo Synapx e Telefone */
   .site-footer{

    .footer-container{

        .synapx-signature{
            width: 100%;
            justify-content: center;
            align-items: center;
            margin: auto;
        }
    }
   }

    .site-footer .logo-synapx-footer {
        width: 150px;
        margin: 0;
    }

    .site-footer .synapx-contacts {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .site-footer .contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 1.1rem;
    }
}


/* Coloque os keyframes fora da chave do h2, soltos no SCSS */
@keyframes desenharLinha {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 22vw;
        /* Se quiser a linha menor, mude aqui para 20% ou 10vw */
        opacity: 1;
    }
}


/* ========================================================== */
/* --- ESTILOS DO RODAPÉ (FOOTER) --- */
/* ========================================================== */
.site-footer {
    background-color: #050505; /* Fundo ainda mais escuro para dar contraste premium */
    color: #eeeeee;
    padding: 8vh 8vw 2vh 8vw;
    font-family: "Barlow", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5vh;
}

.site-footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4vw;
    padding-bottom: 6vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-footer h4 {
    color: #D90429; /* Acento vermelho da marca */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Coluna 1: RDO --- */
.site-footer .rdo-info {
    width: 30%;
}

.site-footer .logo-rdo-footer {
    width: 160px;
    height: auto;
    margin-bottom: 10px;
}

.site-footer .rdo-info p {
    font-size: 0.95rem;
    color: #aaaaaa;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Coluna 2: Links Úteis --- */
.site-footer .links-uteis {
    width: 20%;
}

.site-footer .links-uteis a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.site-footer .links-uteis a:hover {
    color: #D90429;
    transform: translateX(5px);
}

/* --- Coluna 3: Synapx --- */
.site-footer .synapx-signature {
    width: 25%;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.site-footer .logo-synapx-footer {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.site-footer .logo-synapx-footer:hover {
    opacity: 1;
}

.site-footer .synapx-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer .contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaaaaa;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .contact-link svg {
    color: #8D0801; /* Ícones em vermelho discreto */
    transition: color 0.3s ease;
}

.site-footer .contact-link:hover {
    color: #ffffff;
}

.site-footer .contact-link:hover svg {
    color: #D90429;
}

/* --- Direitos Autorais --- */
.site-footer .footer-bottom {
    text-align: center;
    padding-top: 3vh;
}

.site-footer .footer-bottom p {
    color: #666666;
    font-size: 0.85rem;
    font-weight: 300;
}